Populate drop down field from another form's subform
Question
You can find this question from this link 👉 Show a Field in a Subform Based on Selected Item
Answer
You can find the solution to the question from the video below
The Parameters for the Workflow are given below

The Code Snippet is as follows
for each item in input.Order_Items
{
product_id = Products[ID == item.Products];
product_id.Sold_Stock=product_id.Sold_Stock + item.Quantity;
}




